home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
LCLINT2.SPK
/
test
/
test_b
/
c
/
oldstyle
< prev
next >
Wrap
Text File
|
1996-08-28
|
332b
|
25 lines
int f1 (x, y)
{
int z;
z = *y; /* 1. Dereference of non-pointer (int): *y */
return z + x;
}
int f2 (/*@unused@*/ x) /* 2. Function f2 declared with 1 arg, specified with 2 */
{
return 3;
}
int f3 (x, y)
int x;
/*@unused@*/ char y; /* 3. Parameter 2, y, of function f3 has inconsistent type */
{
return x;
}